| 123456789101112131415161718192021222324 |
- import { useParams } from 'common'
- import { useRouter } from 'next/router'
- import { useEffect } from 'react'
- import { IS_PLATFORM } from '@/lib/constants'
- import type { NextPageWithLayout } from '@/types'
- const ApiSettings: NextPageWithLayout = () => {
- const router = useRouter()
- const { ref } = useParams()
- useEffect(() => {
- if (!ref) return
- if (IS_PLATFORM) {
- router.replace(`/project/${ref}/integrations/data_api/overview`)
- } else {
- router.replace(`/project/${ref}/settings/general`)
- }
- }, [ref, router])
- return null
- }
- export default ApiSettings
|